.full {
  background-color: rgba(0, 0, 0, 0.75) !important;
  position: fixed;
  left: 0;
  top: 0;
  width: 100% !important;
  height: 100% !important;
  z-index: 100000;
  transform: none !important;
  clip-path: none !important;
  filter: none !important;
}

.full .content {
  background-color: rgba(0, 0, 0, 0.75) !important;
  height: 100% !important;
  width: 100% !important;
  display: grid;
  transform: none !important;
  clip-path: none !important;
  filter: none !important;
}

.full .content img {
  transform: none !important;
  animation: ease-in 0.5s ease;
  max-width: 100% !important;
  max-height: 100% !important;
  width: fit-content !important;
  height: fit-content !important;
  margin: auto;
  clip-path: none !important;
  filter: none !important;
}


.gallery {
  display: grid;
  grid-gap: 10px;
  grid-template-columns: 200px 200px 200px 200px 200px;
  grid-template-rows: 200px 200px 200px;
  width: 1000px;
  margin: auto;
}

.images-content {
  background-color: #242424;
  padding-top: 100px;
}

.gallery-item {
  width: 200px;
  height: 200px;
  background-color: black;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}

.gallery-item:nth-child(n+6):nth-child(-n+10) {
  transform: translate(52%, -25%);
}

.gallery-item:nth-child(n+11):nth-child(-n+15) {
  transform: translate(0%, -50%);
}

.gallery img {
  object-fit: cover;
  height: 200px;
  width: 200px;
}

.gallery img:hover {
  box-shadow: 0 0 32px #333;
}

.gallery .gallery-item {
  /* transition: grid-row-start 300ms linear; */
  /* transition: transform 300ms ease; */
  /* transition: all 0.5s ease; */
  cursor: pointer;
}

.gallery .gallery-item:hover {
  filter: contrast(200%);
}